body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
.Faculty-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.Faculty-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}
.Faculty-breadcrumb a {
    color: #0056b3;
    text-decoration: none;
}
.Faculty-breadcrumb a:hover {
    text-decoration: underline;
}
h1, h2 {
    color: hotpink;
    margin-bottom: 20px;
}
.Faculty-slideshow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.Faculty-slideshow-item {
    text-align: center;
    flex: 1 1 300px; /* Ensures each item is at least 300px wide */
    max-width: 300px;
}

.Faculty-slideshow img {
    width: 10%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.a {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    padding: 10px 20px;
    /* background-color: #0056b3; */
    color: #6fbb4c;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 499px;
}

.a:hover {
    color: #c2c2c2;
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
table th {
    /* text-align: center; */
    color: #ffffff;
    background-color: hotpink;
}
table tr:nth-child(even) {
    background-color: #f9f9f9;
}
table tr:hover {
    background-color: #f1f1f1;
}
@media (max-width: 768px) {
    table {
        font-size: 14px;
    }
    table th, table td {
        padding: 8px;
    }
}